home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 January: Mac OS SDK / Dev.CD Jan 98 SDK2.toast / Development Kits (Disc 2) / QuickDraw GX / Programming Stuff / Sample Code / Printing Samples / Printer Drivers… / Generic LaserWriter / Generic LaserWriter.a < prev    next >
Encoding:
Text File  |  1996-03-20  |  751 b   |  39 lines  |  [TEXT/MPS ]

  1. ;
  2. ;    Generic LaserWriter.a
  3. ;
  4. ;    this file contains a jump table for the generic LaserWriter driver
  5. ;
  6. ;    © 1992-1994 Apple Computer Inc.
  7. ;
  8. ;
  9.  
  10.                     STRING        ASIS
  11.                     CASE        OBJ
  12.     
  13.  
  14. DriverJumpTable        PROC        EXPORT
  15.  
  16.                     EXPORT        referenceCount
  17.                             
  18. referenceCount        DC.L        0
  19.  
  20.                     IMPORT        DriverPostScriptDoPageSetup
  21.                     JMP            DriverPostScriptDoPageSetup
  22.                                                 
  23.                     IMPORT        DriverOpenConnection
  24.                     JMP            DriverOpenConnection
  25.                                                 
  26.                     IMPORT        DriverCloseConnection
  27.                     JMP            DriverCloseConnection
  28.                                                 
  29.                     IMPORT        DriverInitialize
  30.                     JMP            DriverInitialize
  31.                                                 
  32.                     IMPORT        DriverShutDown
  33.                     JMP            DriverShutDown
  34.                                                 
  35.                     IMPORT        DriverDumpBuffer
  36.                     JMP            DriverDumpBuffer
  37.                                                                                                         
  38.                     END
  39.